/* *{
    box-sizing: border-box;
} */
/* body {
    position: relative;
} */
.sideBar {
    position: fixed;
    top: 360px;
    right: 10px;
    width: 80px;
    margin-left: 5px;
    background-color: #fff;
    z-index: 9999;
    transition: .7s;
    border-radius: 10px;
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.1);
}
.sideBar p {
    margin: 0;
}
.sideBar .item {
    padding: 15px 0;
    cursor: pointer;
    z-index: 15;
}
.sideBar .item .pic {
    width: 38px;
    margin: 0 auto;
}
.sideBar .item .pic img {
    width: 100%;
}
.sideBar .item p {
    margin: 0 auto;
    width: 72px;
    display: block;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #848484;
}
.sideBar i {
    display: block;
    margin: 0 auto;
    width: 50px;
    border-top: 1px solid #dadada;
}
.sideBar_box {
    position: absolute;
    bottom: 0;
    left: -298px;
    width: 295px;
    opacity: 0;
    display: none;
    transition: .2s;
    transform: translateX(20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.1);
}
.sideBar_box_active {
    display: block;
    opacity: 1;
    transform: translateX(0px);
}
.online_box, .phone_box,.message_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 0;
}
.sideBar_box .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.sideBar_item>p {
    font-size: 13px;
    line-height: 24px;
    color: #999;
    text-align: center;
}
.phone_box .box_item {
    display: flex;
    align-items: center;
}
.box_item {
    margin: 14px 0;
}
.box_item>img {
    width: 20px;
    margin-right: 8px;
}
.online_box .qr>img {
    width: 140px;
    border-radius: 6px;
    overflow: hidden;
}
.online_box .qr p {
    text-align: center;
    color: #999;
}
.message_box {
    font-size: 14px;
    padding: 0;
    width: 432px;
    height: 485px;
    position: fixed;
    right: 120px;
    bottom: -485px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.1);
    z-index: 1000;
}
.message_box .top {
    width: 100%;
    height: 60px;
    background-color: #275DEE;
}
.message_box .top .close {
    position: absolute;
    top: 15px;
    right: 16px;
    width: 30px;
    height: 30px;
    opacity: 1;
    cursor: pointer;
}
.message_box h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 14px;
}
.message_box .content {
    width: 100%;
    height: 425px;
    padding: 20px 10px;
    box-sizing: border-box;
}
.message_box .form-group {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.message_box .form-group textarea {
    height: 140px;
}
.message_box .form-group textarea, .form-group input[type="text"], .form-group input[type="number"] {
    width: 200px !important;
    margin-right: 10px;
    border: 1px solid #ccc;
    outline: none;
}
.form-group textarea {
    padding: 10px;
    box-sizing: border-box;
    color: #999;
}
.form-group input {
    padding: 0 10px;
    border: 1px solid #ccc;
    height: 30px;
    box-sizing: border-box;
}
.form-group label {
    margin: 0 6px;
}
.message_box .form-group .title {
    width: 78px;
}
.message_box .form-group button {
    display: block;
    width: 80%;
    height: 40px;
    color: #fff;
    background-color: #275DEE;
    border: none;
    border-radius: 6px;
    margin: 0 auto;
}
.message_box .content h2 {
    line-height: 24px;
    text-align: center;
    color: #333;
}
.message_box .content p {
    text-align: center;
    font-size: 14px;
    color: #999;
}